home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / tools_install / doxygen-1.4.4-setup.exe / {app} / html / examples / Makefile.in < prev    next >
Encoding:
Makefile  |  2001-03-04  |  3.0 KB  |  104 lines

  1.  
  2. all: class/html/index.html \
  3.      define/html/index.html \
  4.      enum/html/index.html \
  5.      file/html/index.html \
  6.      func/html/index.html \
  7.      page/html/index.html \
  8.      relates/html/index.html \
  9.      author/html/index.html \
  10.      par/html/index.html \
  11.      overload/html/index.html \
  12.      example/html/index.html \
  13.      include/html/index.html \
  14.      qtstyle/html/index.html \
  15.      jdstyle/html/index.html \
  16.      structcmd/html/index.html \
  17.      autolink/html/index.html \
  18.      restypedef/html/index.html \
  19.      afterdoc/html/index.html \
  20.      template/html/index.html \
  21.      tag/html/index.html \
  22.      group/html/index.html \
  23.      diagrams/html/index.html \
  24.      memgrp/html/index.html
  25.  
  26. clean:
  27.     rm -rf  class define enum file func page relates author \
  28.                 par overload example include qtstyle jdstyle structcmd \
  29.         autolink tag restypedef afterdoc template tag group diagrams \
  30.         memgrp
  31.  
  32. class/html/index.html: class.h class.cfg
  33.     $(DOXYGEN)/bin/doxygen class.cfg
  34.  
  35. define/html/index.html: define.h define.cfg
  36.     $(DOXYGEN)/bin/doxygen define.cfg
  37.  
  38. enum/html/index.html: enum.h enum.cfg
  39.     $(DOXYGEN)/bin/doxygen enum.cfg
  40.  
  41. file/html/index.html: file.h file.cfg
  42.     $(DOXYGEN)/bin/doxygen file.cfg
  43.  
  44. func/html/index.html: func.h func.cfg
  45.     $(DOXYGEN)/bin/doxygen func.cfg
  46.  
  47. page/html/index.html: page.doc page.cfg
  48.     $(DOXYGEN)/bin/doxygen page.cfg
  49.  
  50. relates/html/index.html: relates.cpp relates.cfg
  51.     $(DOXYGEN)/bin/doxygen relates.cfg
  52.  
  53. author/html/index.html: author.cpp author.cfg
  54.     $(DOXYGEN)/bin/doxygen author.cfg
  55.  
  56. par/html/index.html: par.cpp par.cfg
  57.     $(DOXYGEN)/bin/doxygen par.cfg
  58.  
  59. overload/html/index.html: overload.cpp overload.cfg
  60.     $(DOXYGEN)/bin/doxygen overload.cfg
  61.  
  62. example/html/index.html: example.cpp example_test.cpp example.cfg 
  63.     $(DOXYGEN)/bin/doxygen example.cfg
  64.  
  65. include/html/index.html: include.cpp example_test.cpp include.cfg 
  66.     $(DOXYGEN)/bin/doxygen include.cfg
  67.  
  68. qtstyle/html/index.html: qtstyle.cpp qtstyle.cfg 
  69.     $(DOXYGEN)/bin/doxygen qtstyle.cfg
  70.  
  71. jdstyle/html/index.html: jdstyle.cpp jdstyle.cfg 
  72.     $(DOXYGEN)/bin/doxygen jdstyle.cfg
  73.  
  74. structcmd/html/index.html: structcmd.h structcmd.cfg 
  75.     $(DOXYGEN)/bin/doxygen structcmd.cfg
  76.  
  77. autolink/html/index.html: autolink.cpp autolink.cfg 
  78.     $(DOXYGEN)/bin/doxygen autolink.cfg
  79.  
  80. tag/html/index.html: tag.cpp tag.cfg example/html/index.html
  81.     $(DOXYGEN)/bin/doxygen tag.cfg
  82. #    sed -e "1,1s#perl#$(PERL)#g" tag/html/installdox >tag/html/installdox.perl
  83. #    cd tag/html ; $(PERL) installdox.perl -lexample.tag@../../example/html
  84.  
  85. restypedef/html/index.html: restypedef.cpp restypedef.cfg 
  86.     $(DOXYGEN)/bin/doxygen restypedef.cfg
  87.  
  88. afterdoc/html/index.html: afterdoc.h afterdoc.cfg
  89.     $(DOXYGEN)/bin/doxygen afterdoc.cfg
  90.  
  91. template/html/index.html: templ.cpp templ.cfg
  92.     $(DOXYGEN)/bin/doxygen templ.cfg
  93.  
  94. group/html/index.html: group.cpp group.cfg
  95.     $(DOXYGEN)/bin/doxygen group.cfg
  96.  
  97. memgrp/html/index.html: memgrp.cpp memgrp.cfg
  98.     $(DOXYGEN)/bin/doxygen memgrp.cfg
  99.  
  100. diagrams/html/index.html: diagrams_a.h diagrams_b.h diagrams_c.h diagrams_d.h diagrams_e.h diagrams.cfg
  101. ifneq ($(HAVE_DOT),)
  102.     $(DOXYGEN)/bin/doxygen diagrams.cfg
  103. endif
  104.